From b6aef6b7d6228458bc1d9b848a6c93cbef7e9782 Mon Sep 17 00:00:00 2001 From: Aleksey Kladov Date: Sat, 17 Jun 2017 18:43:05 +0300 Subject: [PATCH] Fix test on windows Backslashes here are escaped (\\), so [/] does not really help :( --- tests/build.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/build.rs b/tests/build.rs index 8b74b807f..f2081c61f 100644 --- a/tests/build.rs +++ b/tests/build.rs @@ -3269,5 +3269,5 @@ fn no_bin_in_src_with_lib() { assert_that(p.cargo_process("build"), execs().with_status(101) - .with_stderr_contains(r#"[ERROR] couldn't read "src[/]bin[/]main.rs"[..]"#)); + .with_stderr_contains(r#"[ERROR] couldn't read "[..]main.rs"[..]"#)); } -- 2.30.2